home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / mac / files / ID99MENU.DIR / 00085.ls < prev    next >
Encoding:
Text File  |  1999-04-29  |  336 b   |  31 lines

  1. property s, showcreditsgrid
  2.  
  3. on beginSprite me
  4.   s = me.spriteNum
  5.   sprite(s).locZ = 1300
  6. end
  7.  
  8. on prepareFrame me
  9.   sprite(s).visible = showcreditsgrid
  10. end
  11.  
  12. on showcredits
  13.   showcreditsgrid = 1
  14. end
  15.  
  16. on hidecredits
  17.   showcreditsgrid = 0
  18. end
  19.  
  20. on mouseUp
  21.   hidecredits()
  22. end
  23.  
  24. on growdown
  25.   hidecredits()
  26. end
  27.  
  28. on growup
  29.   hidecredits()
  30. end
  31.